home *** CD-ROM | disk | FTP | other *** search
/ Aminet 48 / Aminet 48 (2002)(GTI - Schatztruhe)[!][Apr 2002].iso / Aminet / dev / mui / urltext.lha / Urltext / Developer / C / Include / MUI / Urltext_mcc.h
Encoding:
C/C++ Source or Header  |  2002-01-25  |  1.8 KB  |  60 lines

  1. #ifndef URLTEXT_MCC_H
  2. #define URLTEXT_MCC_H
  3.  
  4. /*
  5. **  $VER: Urltext.h 15.4 (25.1.2002)
  6. **  Includes Release 15.4
  7. **
  8. **  Urltext.mcc
  9. **  Active Url MUI class
  10. **
  11. **  (C) 2000-2002 Alfonso Ranieri <alforan@tin.it>
  12. **  All Rights Reserved
  13. **
  14. */
  15.  
  16. #ifndef LIBRARIES_MUI_H
  17. #include <libraries/mui.h>
  18. #endif
  19.  
  20. /***********************************************************************/
  21.  
  22. #define MUIC_Urltext       "Urltext.mcc"
  23. #define UrltextObject      MUI_NewObject(MUIC_Urltext
  24.  
  25. /***********************************************************************/
  26.  
  27. /* Attributes - Scheme is: [ISGN] */
  28. #define MUIA_Urltext_Url            0xFEC900D0 /* [I.GN] (STRPTR) */
  29. #define MUIA_Urltext_Text           0xFEC900D1 /* [I.G.] (STRPTR) */
  30. #define MUIA_Urltext_Active         0xFEC900D2 /* [..G.] (BOOL)   */
  31. #define MUIA_Urltext_Visited        0xFEC900D3 /* [..GN] (BOOL)   */
  32. #define MUIA_Urltext_Underline      0xFEC900D4 /* [I...] (BOOL)   */
  33. #define MUIA_Urltext_FallBack       0xFEC900D5 /* [I...] (BOOL)   */
  34. #define MUIA_Urltext_DoVisitedPen   0xFEC900D6 /* [I...] (BOOL)   */
  35. #define MUIA_Urltext_SetMax         0xFEC900D7 /* [I...] (BOOL)   */
  36. #define MUIA_Urltext_DoOpenURL      0xFEC900D8 /* [I...] (BOOL)   */
  37. #define MUIA_Urltext_NoMenu         0xFEC900D9 /* [I...] (BOOL)   */
  38.  
  39. /***********************************************************************/
  40.  
  41. /* Methods */
  42. #define MUIM_Urltext_OpenURL        0xFEC900C9 /* struct MUIP_Urltext_OpenURL */
  43. #define MUIM_Urltext_Copy           0xFEC900CA /* struct MUIP_Urltext_Copy    */
  44.  
  45. struct MUIP_Urltext_OpenURL
  46. {
  47.     ULONG   MethodID;
  48.     ULONG   flags;      /* Private, PUT 0 */
  49. };
  50.  
  51. struct MUIP_Urltext_Copy
  52. {
  53.     ULONG   MethodID;
  54.     ULONG   unit;
  55. };
  56.  
  57. /***********************************************************************/
  58.  
  59. #endif /* URLTEXT_MCC_H */
  60.